func runtime.growslice

3 uses

	runtime (current package)
		slice.go#L157: func growslice(oldPtr unsafe.Pointer, newLen, oldCap, num int, et *_type) slice {
		slice.go#L161: 		racereadrangepc(oldPtr, uintptr(oldLen*int(et.Size_)), callerpc, abi.FuncPCABIInternal(growslice))
		slice.go#L291: 	new := growslice(old.array, old.cap+num, old.cap, num, et)